Solutions/Threat Intelligence (NEW)/Hunting Queries/FileEntity_WireData.yaml (40 lines of code) (raw):

id: d2fd7661-de21-47ab-a9f9-e6ded983fabe name: TI Map File Entity to WireData Event description: | 'This query finds matches in WireData Event data for known FileName Indicators of Compromise from Threat Intelligence sources. FileName matches may produce false positives, so use this for hunting rather than real-time detection.' description-detailed: | 'This query identifies any matches in the WireData Event data that correspond to any known FileName Indicators of Compromise (IOC) from Threat Intelligence (TI) sources. Since file name matches may produce a significant amount of false positives, it is recommended to use this query for hunting purposes rather than for real-time detection.' requiredDataConnectors: - connectorId: AzureMonitor(WireData) dataTypes: - WireData - connectorId: ThreatIntelligence dataTypes: - ThreatIntelligenceIndicator - connectorId: ThreatIntelligenceTaxii dataTypes: - ThreatIntelligenceIndicator - connectorId: MicrosoftDefenderThreatIntelligence dataTypes: - ThreatIntelligenceIndicator tactics: - Impact query: | let starttime = todatetime('{{StartTimeISO}}'); let endtime = todatetime('{{EndTimeISO}}'); let ioc_lookBack = 14d; ThreatIntelIndicators | where TimeGenerated >= ago(ioc_lookBack) and ValidUntil > now() | where IsActive == true //extract key part of kv pair | extend IndicatorType = replace(@"\[|\]|\""", "", tostring(split(ObservableKey, ":", 0))) | where IndicatorType == "file" | extend FileName = ObservableValue | where isnotempty(FileName) // using innerunique to keep perf fast and result set low, we only need one match to indicate potential malicious activity that needs to be investigated // | join kind=innerunique ( // WireData // | where TimeGenerated between(starttime..endtime) // | where isnotempty(ProcessName) // | extend Process =reverse(substring(reverse(ProcessName), 0, indexof(reverse(ProcessName), "\\"))) // | extend WireData_TimeGenerated = TimeGenerated // ) // on $left.FileName == $right.Process // | where WireData_TimeGenerated < ExpirationDateTime // | summarize WireData_TimeGenerated = arg_max(WireData_TimeGenerated, *) by IndicatorId, Process // | project WireData_TimeGenerated, Description, ActivityGroupNames, IndicatorId, ThreatType, Url, ExpirationDateTime, ConfidenceScore, // FileName, Computer, Direction, LocalIP, RemoteIP, LocalPortNumber, RemotePortNumber // | extend timestamp = WireData_TimeGenerated, HostName = split(Computer, '.', 0)[0], DnsDomain = strcat_array(array_slice(split(Computer, '.'), 1, -1), '.') // | extend Host_0_HostName = HostName // | extend Host_0_DnsDomain = DnsDomain // | extend IP_0_Address = RemoteIP // | extend IP_1_Address = LocalIP // | extend URL_0_Url = Url entityMappings: - entityType: Host fieldMappings: - identifier: HostName columnName: HostName - identifier: DnsDomain columnName: DnsDomain - entityType: IP fieldMappings: - identifier: Address columnName: RemoteIP - entityType: IP fieldMappings: - identifier: Address columnName: LocalIP - entityType: URL fieldMappings: - identifier: Url columnName: Url version: 1.0.3